home *** CD-ROM | disk | FTP | other *** search
/ Apple WWDC 1996 / WWDC96_1996 (CD).toast / Technology Materials / MacOS 8 Resources / Developer Tools / Mac OS 8 Interfaces & Libraries / Interfaces / AIncludes / OSAComp.a < prev    next >
Encoding:
Text File  |  1996-05-01  |  1.5 KB  |  62 lines  |  [TEXT/MPS ]

  1. ;
  2. ;    File:        OSAComp.a
  3. ;
  4. ;    Contains:    AppleScript Component Implementor's Interfaces.
  5. ;
  6. ;    Version:    Technology:    AppleScript 1.1
  7. ;                Release:    Universal Interfaces 3.0d3 on Copland DR1
  8. ;
  9. ;    Copyright:    © 1984-1996 by Apple Computer, Inc.  All rights reserved.
  10. ;
  11. ;    Bugs?:        If you find a problem with this file, send the file and version
  12. ;                information (from above) and the problem description to:
  13. ;
  14. ;                    Internet:    apple.bugs@applelink.apple.com
  15. ;                    AppleLink:    APPLE.BUGS
  16. ;
  17. ;
  18.     IF &TYPE('__OSACOMP__') = 'UNDEFINED' THEN
  19. __OSACOMP__ SET 1
  20.  
  21.     IF &TYPE('__APPLEEVENTS__') = 'UNDEFINED' THEN
  22.     include 'AppleEvents.a'
  23.     ENDIF
  24.     IF &TYPE('__OSA__') = 'UNDEFINED' THEN
  25.     include 'OSA.a'
  26.     ENDIF
  27.     IF FOR_SYSTEM7_AND_SYSTEM8_COOPERATIVE THEN
  28. ;
  29. ;*************************************************************************
  30. ;    Types and Constants
  31. ;*************************************************************************
  32. ;
  33. ;
  34. ;*************************************************************************
  35. ;    Routines for Associating a Storage Type with a Script Data Handle 
  36. ;*************************************************************************
  37. ;
  38. ;
  39. ; pascal OSErr OSAGetStorageType(Handle scriptData, DescType *dscType)
  40. ;
  41.     IF GENERATINGCFM THEN
  42.         IMPORT_CFM_FUNCTION OSAGetStorageType
  43.     ENDIF
  44.  
  45. ;
  46. ; pascal OSErr OSAAddStorageType(Handle scriptData, DescType dscType)
  47. ;
  48.     IF GENERATINGCFM THEN
  49.         IMPORT_CFM_FUNCTION OSAAddStorageType
  50.     ENDIF
  51.  
  52. ;
  53. ; pascal OSErr OSARemoveStorageType(Handle scriptData)
  54. ;
  55.     IF GENERATINGCFM THEN
  56.         IMPORT_CFM_FUNCTION OSARemoveStorageType
  57.     ENDIF
  58.  
  59.     ENDIF
  60.     ENDIF ; __OSACOMP__ 
  61.  
  62.